df2f66497d39e9a8b7c36e21d61fe393a48cc716,test/org/sagebionetworks/bridge/dynamodb/DynamoUploadDaoTest.java,DynamoUploadDaoTest,canRetrieveUploadRecords,#,150
Before Change
for (String healthCode : healthcodeToUploadId.keySet()) {
dao.deleteUploadsForHealthCode(healthCode);
}
uploads = dao.getStudyUploads(TEST_STUDY, now.minusMinutes(3), now);
assertTrue(uploads.isEmpty());
// We do not need to delete these uploads to clean up the test, we just did it.
After Change
for (String healthCode : healthcodeToUploadId.keySet()) {
dao.deleteUploadsForHealthCode(healthCode);
}
uploads = dao.getStudyUploads(TEST_STUDY, now.minusMinutes(3), now, API_MAXIMUM_PAGE_SIZE, null).getItems();
assertTrue(uploads.isEmpty());
// We do not need to delete these uploads to clean up the test, we just did it.